home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / dos / communic / pcmail / main / logs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-05  |  971 b   |  81 lines

  1. /*++
  2.  
  3. /* NAME
  4.  
  5. /*    logs 5
  6.  
  7. /* SUMMARY
  8.  
  9. /*    various message services
  10.  
  11. /* PROJECT
  12.  
  13. /*    pc-mail
  14.  
  15. /* PACKAGE
  16.  
  17. /*    cico
  18.  
  19. /* SYNOPSIS
  20.  
  21. /*    #include "logs.h"
  22.  
  23. /* DESCRIPTION
  24.  
  25. /* .nf
  26.  
  27.  
  28.  
  29.  /* globally visible components */
  30.  
  31.  
  32.  
  33. #define debug(l) (dflag >= l) && dbg    /* yuck! */
  34.  
  35.  
  36.  
  37. extern int dflag;            /* debugging level */
  38.  
  39. extern int *systrap;            /* panic button */
  40.  
  41.  
  42.  
  43. extern void trap();            /* exception handler */
  44.  
  45. extern int open_log();            /* open log file */
  46.  
  47. extern int dbg();            /* write debug info */
  48.  
  49. extern void log();            /* write logging info */
  50.  
  51.  
  52.  
  53. /* FILES
  54.  
  55. /*    $MAILDIR/logfile
  56.  
  57. /* AUTHOR(S)
  58.  
  59. /*    W.Z. Venema
  60.  
  61. /*    Eindhoven University of Technology
  62.  
  63. /*    Department of Mathematics and Computer Science
  64.  
  65. /*    Den Dolech 2, P.O. Box 513, 5600 MB Eindhoven, The Netherlands
  66.  
  67. /* CREATION DATE
  68.  
  69. /*    Sun Apr 12 13:45:11 GMT+1:00 1987
  70.  
  71. /* LAST MODIFICATION
  72.  
  73. /*    90/01/22 13:02:03
  74.  
  75. /* VERSION/RELEASE
  76.  
  77. /*    2.1
  78.  
  79. /*--*/
  80.  
  81.